<!-- Branded Header -->

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css">

<style>
    *,
    *:before,
    *:after {
        box-sizing: border-box;
        outline: none;
    }

    html {
        font-size: 18px;
        font-smooth: auto;
        font-weight: 300;
        line-height: 1.5;
        color: #444;
    }

    body {
        padding-top: 50px;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {

    }

    h2 {
        margin: 5px 0;
        color: white;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 0;
        background-color: whitesmoke;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        z-index: 9998;
    }

    .logo {
        position: relative;
        display: block;
        color: #000000;
        font-size: 18px;
        font-weight: 400;
        text-decoration: none;
    }

    .logo i {
        margin-right: 10px;
        color: #cc6733;
    }

    .nav-menu {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
    }

    .navigation {
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        background-color: rgba(245, 245, 245, 0.95);
        transition: 0.25s linear;
        z-index: 9998;
    }

    .navigation.is-open {
        left: 0;
    }

    .navigation ul {
        position: 0;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

    .navigation ul li {
        position: relative;
        height: 25vh;
        border-bottom: 1px solid rgba(68, 68, 68, 0.1);
    }

    .navigation a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding: 20px;
        color: #cc6733;
        font-family: "Source Code Pro", monospace;
        font-size: 32px;
        text-decoration: none;
    }

    .navigation a:before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #cc9b33;
        transition: 0.25s;
        z-index: -1;
    }

    .navigation a:hover {
        color: whitesmoke;
    }

    .navigation a:hover:before {
        width: 100%;
    }

    .hamburger {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        margin-left: auto;
        padding: 0;
        border: none;
        background-color: rgba(255, 255, 255, 0);
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger.is-open span {
        background-color: black;
        transition: 0.25s transform linear;
    }

    .hamburger.is-open span:first-child {
        transform: translateY(2px) rotate(45deg);
        animation: hamburger3 0.25s linear;
    }

    @keyframes hamburger3 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(2px) rotate(45deg);
        }
    }

    .hamburger.is-open span:nth-child(2) {
        width: 0;
    }

    .hamburger.is-open span:last-child {
        transform: translateY(-2px) rotate(-45deg);
        animation: hamburger4 0.25s linear;
    }

    @keyframes hamburger4 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-2px) rotate(-45deg);
        }
    }

    .hamburger span {
        position: relative;
        display: block;
        width: 30px;
        height: 2px;
        background-color: #cc6733;
        border-radius: 10px;
        transform-origin: center center;
        transition: 0.25s transform linear;
    }

    .hamburger span:first-child {
        transform: translateY(-5px) rotate(0deg);
        animation: hamburger1 0.25s linear;
    }

    @keyframes hamburger1 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(-5px) rotate(0deg);
        }
    }

    .hamburger span:last-child {
        transform: translateY(5px) rotate(0deg);
        animation: hamburger2 0.25s linear;
    }

    @keyframes hamburger2 {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(0);
        }

        100% {
            transform: translateY(5px) rotate(0deg);
        }
    }

    section {
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    section:nth-of-type(1) {
        background-color: #cc6733;
        animation: backgrounder 30s linear infinite;
    }

    section:nth-of-type(2) {
        background-color: #cc9b33;
        animation: backgrounder 30s linear infinite;
    }

    section:nth-of-type(3) {
        background-color: #c9cc33;
        animation: backgrounder 30s linear infinite;
    }

    section:nth-of-type(4) {
        background-color: #95cc33;
        animation: backgrounder 30s linear infinite;
    }

    section:nth-of-type(5) {
        background-color: #61cc33;
        animation: backgrounder 30s linear infinite;
    }

    section .section-heading {
        position: sticky;
        top: 60px;
        width: 100%;
        background-color: rgba(245, 245, 245, 0.3);
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        z-index: 9996;
    }

    /* Footer */
    
    .navbar {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: .5rem 1rem;
    }
    .fixed-bottom {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }

    .grid-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 10px;
    }

    @media (min-width: 48rem) {
        .grid-container {
            padding: 0 20px;
        }
    }

    .grid-container.full {
        max-width: 100%;
        padding: 0 10px;
    }

    @media (min-width: 48rem) {
        .grid-container.full {
            padding: 0 20px;
        }
    }

    .grid-container .grid-x {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    @media (min-width: 48rem) {
        .grid-container .grid-x {
            flex-direction: row;
            flex-wrap: wrap;
        }
    }

    .grid-container .grid-x.align-left {
        justify-content: flex-start;
    }

    .grid-container .grid-x.align-right {
        justify-content: flex-end;
    }

    .grid-container .grid-x.align-justify {
        justify-content: space-between;
    }

    .grid-container .grid-x.align-top {
        align-items: flex-start;
    }

    .grid-container .grid-x.align-bottom {
        align-items: flex-end;
    }

    .grid-container .grid-x.align-middle {
        align-items: center;
    }

    .grid-container .grid-x.align-center {
        align-items: center;
        justify-content: center;
    }

    .grid-container .grid-x.grid-margin-x .cell {
        margin-left: 10px;
        margin-right: 10px;
    }

    .grid-container .grid-x.grid-padding-x .cell {
        padding-left: 10px;
        padding-right: 10px;
    }

    .grid-container .grid-x.grid-margin-y .cell {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .grid-container .grid-x.grid-padding-y .cell {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cell {
        display: block;
        width: 100%;
    }

    @media (min-width: 20rem) {
        .cell.small-1 {
            width: 8.3333%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-2 {
            width: 16.6666%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-3 {
            width: 25%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-4 {
            width: 33.3333%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-5 {
            width: 41.6666%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-6 {
            width: 50%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-7 {
            width: 58.3333%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-8 {
            width: 66.6666%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-9 {
            width: 75%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-10 {
            width: 83.3333%;
        }
    }

    @media (min-width: 20rem) {
        .cell.small-11 {
            width: 91.666612%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-1 {
            width: 8.3333%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-2 {
            width: 16.6666%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-3 {
            width: 25%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-4 {
            width: 33.3333%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-5 {
            width: 41.6666%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-6 {
            width: 50%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-7 {
            width: 58.3333%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-8 {
            width: 66.6666%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-9 {
            width: 75%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-10 {
            width: 83.3333%;
        }
    }

    @media (min-width: 48rem) {
        .cell.medium-11 {
            width: 91.666612%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-1 {
            width: 8.3333%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-2 {
            width: 16.6666%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-3 {
            width: 25%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-4 {
            width: 33.3333%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-5 {
            width: 41.6666%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-6 {
            width: 50%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-7 {
            width: 58.3333%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-8 {
            width: 66.6666%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-9 {
            width: 75%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-10 {
            width: 83.3333%;
        }
    }

    @media (min-width: 64rem) {
        .cell.large-11 {
            width: 91.666612%;
        }
    }

    .cell.align-self-right {
        display: flex;
        justify-content: flex-end;
    }

    .cell.align-self-left {
        display: flex;
        justify-content: flex-start;
    }

    .top-bar .grid-x {
        flex-wrap: nowrap;
    }
</style>

<header class="top-bar">
    <div class="grid-container full">
        <div class="grid-x align-middle">
            <div class="cell small-11"><a class="logo" href="#"> <i class="fas fa-weight-hanging"> </i><span>ACME Inc.</span></a></div>
            <div class="cell small-4"><a class="logo" href="#"> <i class="fas fa-lock"> </i><span>Login</span></a></div>
            <div class="cell small-1 nav-menu">
                <button class="hamburger"><span></span><span></span><span></span></button>
                <nav class="navigation">
                    <ul>
                        <li><a href="#">Home</a></li>
                        <li><a href="#">About</a></li>
                        <li><a href="#">Services</a></li>
                        <li><a href="#">Contact</a></li>
                    </ul>
                </nav>
            </div>
        </div>
    </div>
</header>



<script id="rendered-js">
    const hamburger = document.querySelector('.hamburger');
    const navigation = document.querySelector('.navigation');

    hamburger.addEventListener('click', () => {
        navigation.classList.toggle('is-open');
        hamburger.classList.toggle('is-open');
    });
</script>

<!-- Branded Header -->

[RF_HEADER_FOOTER_SPLIT]

<!-- Branded Footer -->

<style type="text/css">

.navbar {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: .5rem 1rem;
    }
    .fixed-bottom {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1030;
    }
    
    footer {
        background-color: #292929;
        color: white;
    }
</style>

<footer class="navbar fixed-bottom">
    <nav>
        <div class="grid-x">
            <div class="cell">
                <div>Copyright &#169; <?php echo date('Y', time()); ?></div>
            </div>
        </div>
    </nav>
</footer>

[RF_HEADER_FOOTER_SPLIT]

